From 81aaf25043d23d789e7befd71f41c051002914ab Mon Sep 17 00:00:00 2001 From: robertl Date: Fri, 20 Jun 2008 15:45:35 +0000 Subject: [PATCH] Igo8 warning cleanup. git-svn-id: http://gpsbabel.googlecode.com/svn/trunk@3270 f51c46e8-681c-474f-0cfe-069cfd0219fb --- gpsbabel/igo8.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gpsbabel/igo8.c b/gpsbabel/igo8.c index 5a4c07f6f..56ec35158 100644 --- a/gpsbabel/igo8.c +++ b/gpsbabel/igo8.c @@ -103,19 +103,19 @@ static void igo8_check_type_sizes() if (sizeof(igo8_point) != 12) { fatal(MYNAME ": igo8_point is %ld bytes instead of the required 12.\n", - sizeof(igo8_point)); + (long) sizeof(igo8_point)); } if (sizeof(igo8_information_block) != 12) { fatal(MYNAME ": igo8_information_block is %ld bytes instead of the required 12.\n", - sizeof(igo8_information_block)); + (long) sizeof(igo8_information_block)); } if (sizeof(igo8_id_block) != 20) { fatal(MYNAME ": igo8_id_block is %ld bytes instead of the required 20.\n", - sizeof(igo8_id_block)); + (long) sizeof(igo8_id_block)); } } -- 2.30.2